-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support neovim in vimgolf cli #246
Conversation
The '--nofork' option is invalid for neovim. It is also stated in comment on line 106 that '--nofork' option is only required for gvim. So, it is more logical to have this option for gvim only not for vim or neovim. This code is tested with 'vim', 'neovim' and 'gvim' (vim-gtk3) and it is working without any error.
With the requirement of rake 12.3.1, the cli component can not compile with rvm<2.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overall lgtm, one question to address before we merge..
@@ -4,8 +4,6 @@ matrix: | |||
- rvm: 2.4.1 # Test web AND cli with specific version | |||
gemfile: Gemfile | |||
# Otherwise test only the cli | |||
- rvm: 1.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason why you removed this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because ruby 1.9 is no more supported https://www.ruby-lang.org/en/news/2015/02/23/support-for-ruby-1-9-3-has-ended/
I m pretty sur it is because since your last merge (upgrade gem) the 1.9 test stopped working because of gem incompatible with r 1.9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair enough :-)
@mayanksuman thank you for the contribution! |
@igrigorik thanks for merging the changes. |
The '--nofork' option is invalid for neovim.
It is also stated in comment on line 106 that '--nofork' option is only required for gvim.
So, it is more logical to have this option for gvim only not for vim or neovim.
This code is tested with 'vim', 'neovim' and 'gvim' (vim-gtk3) and it is working without any error.
Solves #162